home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Commands / PPrivateString.h < prev    next >
C/C++ Source or Header  |  1996-07-12  |  708b  |  34 lines

  1. /*
  2.  *--- PPrivateString.h ----------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Thu, Oct 12, 1995 @ 10:48 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PPrivateString__
  10. #define __PPrivateString__
  11.  
  12. class PPrivateString
  13. {
  14.  
  15. public:
  16.  
  17.     PPrivateString
  18.       (    const char *    sDeveloperID,
  19.         const char *    sPluginID,
  20.         short            cTargetClass,
  21.         unsigned long    nTypeFlag,
  22.         unsigned long    nTargetID,
  23.         short            bChange,
  24.         const char *    sPrivateString );
  25.  
  26. private:
  27.  
  28.     PPrivateString();
  29. };
  30.  
  31. #endif
  32.  
  33. // end of PPrivateString.h
  34.